home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / Caml Light 0.7 / Caml Light 0.7 source / src / runtime / gc_ctrl.h < prev    next >
Text File  |  1995-06-01  |  285b  |  18 lines

  1. #ifndef _gc_ctrl_
  2. #define _gc_ctrl_
  3.  
  4. #include "misc.h"
  5.  
  6. extern long
  7.      stat_minor_words,
  8.      stat_promoted_words,
  9.      stat_major_words,
  10.      stat_minor_collections,
  11.      stat_major_collections,
  12.      stat_heap_size;
  13.  
  14. void init_gc P((long, long, int, int));
  15.  
  16.  
  17. #endif /* _gc_ctrl_ */
  18.